home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src / minizip / unzip.c < prev    next >
C/C++ Source or Header  |  2005-09-24  |  49KB  |  1,592 lines

  1. /* unzip.c -- IO for uncompress .zip files using zlib
  2.    Version 1.00, September 10th, 2003
  3.  
  4.    Copyright (C) 1998-2003 Gilles Vollant
  5.  
  6.    Read unzip.h for more info
  7. */
  8.  
  9. /* Decryption code comes from crypt.c by Info-ZIP but has been greatly reduced in terms of
  10. compatibility with older software. The following is from the original crypt.c. Code
  11. woven in by Terry Thorsen 1/2003.
  12. */
  13. /*
  14.   Copyright (c) 1990-2000 Info-ZIP.  All rights reserved.
  15.  
  16.   See the accompanying file LICENSE, version 2000-Apr-09 or later
  17.   (the contents of which are also included in zip.h) for terms of use.
  18.   If, for some reason, all these files are missing, the Info-ZIP license
  19.   also may be found at:  ftp://ftp.info-zip.org/pub/infozip/license.html
  20. */
  21. /*
  22.   crypt.c (full version) by Info-ZIP.      Last revised:  [see crypt.h]
  23.  
  24.   The encryption/decryption parts of this source code (as opposed to the
  25.   non-echoing password parts) were originally written in Europe.  The
  26.   whole source package can be freely distributed, including from the USA.
  27.   (Prior to January 2000, re-export from the US was a violation of US law.)
  28.  */
  29.  
  30. /*
  31.   This encryption code is a direct transcription of the algorithm from
  32.   Roger Schlafly, described by Phil Katz in the file appnote.txt.  This
  33.   file (appnote.txt) is distributed with the PKZIP program (even in the
  34.   version without encryption capabilities).
  35.  */
  36.  
  37.  
  38. #ifndef _WIN32_WCE
  39. #include <stdio.h>
  40. #include <stdlib.h>
  41. #else
  42. #include <stdio.h>
  43. #include "celib.h"
  44. #endif
  45. #include <string.h>
  46.  
  47. #include "zlib.h"
  48. #include "unzip.h"
  49.  
  50. #ifdef STDC
  51. #  include <stddef.h>
  52. #  include <string.h>
  53. #  include <stdlib.h>
  54. #endif
  55. #ifdef NO_ERRNO_H
  56.     extern int errno;
  57. #else
  58. #   include <errno.h>
  59. #endif
  60.  
  61.  
  62. #ifndef local
  63. #  define local static
  64. #endif
  65. /* compile with -Dlocal if your debugger can't find static symbols */
  66.  
  67.  
  68. #ifndef CASESENSITIVITYDEFAULT_NO
  69. #  if !defined(unix) && !defined(CASESENSITIVITYDEFAULT_YES)
  70. #    define CASESENSITIVITYDEFAULT_NO
  71. #  endif
  72. #endif
  73.  
  74.  
  75. #ifndef UNZ_BUFSIZE
  76. #define UNZ_BUFSIZE (16384)
  77. #endif
  78.  
  79. #ifndef UNZ_MAXFILENAMEINZIP
  80. #define UNZ_MAXFILENAMEINZIP (256)
  81. #endif
  82.  
  83. #ifndef ALLOC
  84. # define ALLOC(size) (malloc(size))
  85. #endif
  86. #ifndef TRYFREE
  87. # define TRYFREE(p) {if (p) free(p);}
  88. #endif
  89.  
  90. #define SIZECENTRALDIRITEM (0x2e)
  91. #define SIZEZIPLOCALHEADER (0x1e)
  92.  
  93.  
  94.  
  95.  
  96. const char unz_copyright[] =
  97.    " unzip 1.00 Copyright 1998-2003 Gilles Vollant - http://www.winimage.com/zLibDll";
  98.  
  99. /* unz_file_info_interntal contain internal info about a file in zipfile*/
  100. typedef struct unz_file_info_internal_s
  101. {
  102.     uLong offset_curfile;/* relative offset of local header 4 bytes */
  103. } unz_file_info_internal;
  104.  
  105.  
  106. /* file_in_zip_read_info_s contain internal information about a file in zipfile,
  107.     when reading and decompress it */
  108. typedef struct
  109. {
  110.     char  *read_buffer;         /* internal buffer for compressed data */
  111.     z_stream stream;            /* zLib stream structure for inflate */
  112.  
  113.     uLong pos_in_zipfile;       /* position in byte on the zipfile, for fseek*/
  114.     uLong stream_initialised;   /* flag set if stream structure is initialised*/
  115.  
  116.     uLong offset_local_extrafield;/* offset of the local extra field */
  117.     uInt  size_local_extrafield;/* size of the local extra field */
  118.     uLong pos_local_extrafield;   /* position in the local extra field in read*/
  119.  
  120.     uLong crc32;                /* crc32 of all data uncompressed */
  121.     uLong crc32_wait;           /* crc32 we must obtain after decompress all */
  122.     uLong rest_read_compressed; /* number of byte to be decompressed */
  123.     uLong rest_read_uncompressed;/*number of byte to be obtained after decomp*/
  124.     zlib_filefunc_def z_filefunc;
  125.     voidpf filestream;        /* io structore of the zipfile */
  126.     uLong compression_method;   /* compression method (0==store) */
  127.     uLong byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
  128.     int   raw;
  129. } file_in_zip_read_info_s;
  130.  
  131.  
  132. /* unz_s contain internal information about the zipfile
  133. */
  134. typedef struct
  135. {
  136.     zlib_filefunc_def z_filefunc;
  137.     voidpf filestream;        /* io structore of the zipfile */
  138.     unz_global_info gi;       /* public global information */
  139.     uLong byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
  140.     uLong num_file;             /* number of the current file in the zipfile*/
  141.     uLong pos_in_central_dir;   /* pos of the current file in the central dir*/
  142.     uLong current_file_ok;      /* flag about the usability of the current file*/
  143.     uLong central_pos;          /* position of the beginning of the central dir*/
  144.  
  145.     uLong size_central_dir;     /* size of the central directory  */
  146.     uLong offset_central_dir;   /* offset of start of central directory with
  147.                                    respect to the starting disk number */
  148.  
  149.     unz_file_info cur_file_info; /* public info about the current file in zip*/
  150.     unz_file_info_internal cur_file_info_internal; /* private info about it*/
  151.     file_in_zip_read_info_s* pfile_in_zip_read; /* structure about the current
  152.                                         file if we are decompressing it */
  153.     int encrypted;
  154. #    ifndef NOUNCRYPT
  155.     unsigned long keys[3];     /* keys defining the pseudo-random sequence */
  156.     const unsigned long* pcrc_32_tab;
  157. #    endif
  158. } unz_s;
  159.  
  160.  
  161. #ifndef NOUNCRYPT
  162. #include "crypt.h"
  163. #endif
  164.  
  165. /* ===========================================================================
  166.      Read a byte from a gz_stream; update next_in and avail_in. Return EOF
  167.    for end of file.
  168.    IN assertion: the stream s has been sucessfully opened for reading.
  169. */
  170.  
  171.  
  172. local int unzlocal_getByte OF((
  173.     const zlib_filefunc_def* pzlib_filefunc_def,
  174.     voidpf filestream,
  175.     int *pi));
  176.  
  177. local int unzlocal_getByte(pzlib_filefunc_def,filestream,pi)
  178.     const zlib_filefunc_def* pzlib_filefunc_def;
  179.     voidpf filestream;
  180.     int *pi;
  181. {
  182.     unsigned char c;
  183.     int err = (int)ZREAD(*pzlib_filefunc_def,filestream,&c,1);
  184.     if (err==1)
  185.     {
  186.         *pi = (int)c;
  187.         return UNZ_OK;
  188.     }
  189.     else
  190.     {
  191.         if (ZERROR(*pzlib_filefunc_def,filestream))
  192.             return UNZ_ERRNO;
  193.         else
  194.             return UNZ_EOF;
  195.     }
  196. }
  197.  
  198.  
  199. /* ===========================================================================
  200.    Reads a long in LSB order from the given gz_stream. Sets
  201. */
  202. local int unzlocal_getShort OF((
  203.     const zlib_filefunc_def* pzlib_filefunc_def,
  204.     voidpf filestream,
  205.     uLong *pX));
  206.  
  207. local int unzlocal_getShort (pzlib_filefunc_def,filestream,pX)
  208.     const zlib_filefunc_def* pzlib_filefunc_def;
  209.     voidpf filestream;
  210.     uLong *pX;
  211. {
  212.     uLong x ;
  213.     int i;
  214.     int err;
  215.  
  216.     err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
  217.     x = (uLong)i;
  218.  
  219.     if (err==UNZ_OK)
  220.         err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
  221.     x += ((uLong)i)<<8;
  222.  
  223.     if (err==UNZ_OK)
  224.         *pX = x;
  225.     else
  226.         *pX = 0;
  227.     return err;
  228. }
  229.  
  230. local int unzlocal_getLong OF((
  231.     const zlib_filefunc_def* pzlib_filefunc_def,
  232.     voidpf filestream,
  233.     uLong *pX));
  234.  
  235. local int unzlocal_getLong (pzlib_filefunc_def,filestream,pX)
  236.     const zlib_filefunc_def* pzlib_filefunc_def;
  237.     voidpf filestream;
  238.     uLong *pX;
  239. {
  240.     uLong x ;
  241.     int i;
  242.     int err;
  243.  
  244.     err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
  245.     x = (uLong)i;
  246.  
  247.     if (err==UNZ_OK)
  248.         err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
  249.     x += ((uLong)i)<<8;
  250.  
  251.     if (err==UNZ_OK)
  252.         err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
  253.     x += ((uLong)i)<<16;
  254.  
  255.     if (err==UNZ_OK)
  256.         err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
  257.     x += ((uLong)i)<<24;
  258.  
  259.     if (err==UNZ_OK)
  260.         *pX = x;
  261.     else
  262.         *pX = 0;
  263.     return err;
  264. }
  265.  
  266.  
  267. /* My own strcmpi / strcasecmp */
  268. local int strcmpcasenosensitive_internal (fileName1,fileName2)
  269.     const char* fileName1;
  270.     const char* fileName2;
  271. {
  272.     for (;;)
  273.     {
  274.         char c1=*(fileName1++);
  275.         char c2=*(fileName2++);
  276.         if ((c1>='a') && (c1<='z'))
  277.             c1 -= 0x20;
  278.         if ((c2>='a') && (c2<='z'))
  279.             c2 -= 0x20;
  280.         if (c1=='\0')
  281.             return ((c2=='\0') ? 0 : -1);
  282.         if (c2=='\0')
  283.             return 1;
  284.         if (c1<c2)
  285.             return -1;
  286.         if (c1>c2)
  287.             return 1;
  288.     }
  289. }
  290.  
  291.  
  292. #ifdef  CASESENSITIVITYDEFAULT_NO
  293. #define CASESENSITIVITYDEFAULTVALUE 2
  294. #else
  295. #define CASESENSITIVITYDEFAULTVALUE 1
  296. #endif
  297.  
  298. #ifndef STRCMPCASENOSENTIVEFUNCTION
  299. #define STRCMPCASENOSENTIVEFUNCTION strcmpcasenosensitive_internal
  300. #endif
  301.  
  302. /*
  303.    Compare two filename (fileName1,fileName2).
  304.    If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
  305.    If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi
  306.                                                                 or strcasecmp)
  307.    If iCaseSenisivity = 0, case sensitivity is defaut of your operating system
  308.         (like 1 on Unix, 2 on Windows)
  309.  
  310. */
  311. extern int ZEXPORT unzStringFileNameCompare (fileName1,fileName2,iCaseSensitivity)
  312.     const char* fileName1;
  313.     const char* fileName2;
  314.     int iCaseSensitivity;
  315. {
  316.     if (iCaseSensitivity==0)
  317.         iCaseSensitivity=CASESENSITIVITYDEFAULTVALUE;
  318.  
  319.     if (iCaseSensitivity==1)
  320.         return strcmp(fileName1,fileName2);
  321.  
  322.     return STRCMPCASENOSENTIVEFUNCTION(fileName1,fileName2);
  323. }
  324.  
  325. #ifndef BUFREADCOMMENT
  326. #define BUFREADCOMMENT (0x400)
  327. #endif
  328.  
  329. /*
  330.   Locate the Central directory of a zipfile (at the end, just before
  331.     the global comment)
  332. */
  333. local uLong unzlocal_SearchCentralDir OF((
  334.     const zlib_filefunc_def* pzlib_filefunc_def,
  335.     voidpf filestream));
  336.  
  337. local uLong unzlocal_SearchCentralDir(pzlib_filefunc_def,filestream)
  338.     const zlib_filefunc_def* pzlib_filefunc_def;
  339.     voidpf filestream;
  340. {
  341.     unsigned char* buf;
  342.     uLong uSizeFile;
  343.     uLong uBackRead;
  344.     uLong uMaxBack=0xffff; /* maximum size of global comment */
  345.     uLong uPosFound=0;
  346.  
  347.     if (ZSEEK(*pzlib_filefunc_def,filestream,0,ZLIB_FILEFUNC_SEEK_END) != 0)
  348.         return 0;
  349.  
  350.  
  351.     uSizeFile = ZTELL(*pzlib_filefunc_def,filestream);
  352.  
  353.     if (uMaxBack>uSizeFile)
  354.         uMaxBack = uSizeFile;
  355.  
  356.     buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
  357.     if (buf==NULL)
  358.         return 0;
  359.  
  360.     uBackRead = 4;
  361.     while (uBackRead<uMaxBack)
  362.     {
  363.         uLong uReadSize,uReadPos ;
  364.         int i;
  365.         if (uBackRead+BUFREADCOMMENT>uMaxBack)
  366.             uBackRead = uMaxBack;
  367.         else
  368.             uBackRead+=BUFREADCOMMENT;
  369.         uReadPos = uSizeFile-uBackRead ;
  370.  
  371.         uReadSize = ((BUFREADCOMMENT+4) < (uSizeFile-uReadPos)) ?
  372.                      (BUFREADCOMMENT+4) : (uSizeFile-uReadPos);
  373.         if (ZSEEK(*pzlib_filefunc_def,filestream,uReadPos,ZLIB_FILEFUNC_SEEK_SET)!=0)
  374.             break;
  375.  
  376.         if (ZREAD(*pzlib_filefunc_def,filestream,buf,uReadSize)!=uReadSize)
  377.             break;
  378.  
  379.         for (i=(int)uReadSize-3; (i--)>0;)
  380.             if (((*(buf+i))==0x50) && ((*(buf+i+1))==0x4b) &&
  381.                 ((*(buf+i+2))==0x05) && ((*(buf+i+3))==0x06))
  382.             {
  383.                 uPosFound = uReadPos+i;
  384.                 break;
  385.             }
  386.  
  387.         if (uPosFound!=0)
  388.             break;
  389.     }
  390.     TRYFREE(buf);
  391.     return uPosFound;
  392. }
  393.  
  394. /*
  395.   Open a Zip file. path contain the full pathname (by example,
  396.      on a Windows NT computer "c:\\test\\zlib114.zip" or on an Unix computer
  397.      "zlib/zlib114.zip".
  398.      If the zipfile cannot be opened (file doesn't exist or in not valid), the
  399.        return value is NULL.
  400.      Else, the return value is a unzFile Handle, usable with other function
  401.        of this unzip package.
  402. */
  403. extern unzFile ZEXPORT unzOpen2 (path, pzlib_filefunc_def)
  404.     const char *path;
  405.     zlib_filefunc_def* pzlib_filefunc_def;
  406. {
  407.     unz_s us;
  408.     unz_s *s;
  409.     uLong central_pos,uL;
  410.  
  411.     uLong number_disk;          /* number of the current dist, used for
  412.                                    spaning ZIP, unsupported, always 0*/
  413.     uLong number_disk_with_CD;  /* number the the disk with central dir, used
  414.                                    for spaning ZIP, unsupported, always 0*/
  415.     uLong number_entry_CD;      /* total number of entries in
  416.                                    the central dir
  417.                                    (same than number_entry on nospan) */
  418.  
  419.     int err=UNZ_OK;
  420.  
  421.     if (unz_copyright[0]!=' ')
  422.         return NULL;
  423.  
  424.     if (pzlib_filefunc_def==NULL)
  425.         fill_fopen_filefunc(&us.z_filefunc);
  426.     else
  427.         us.z_filefunc = *pzlib_filefunc_def;
  428.  
  429.     us.filestream= (*(us.z_filefunc.zopen_file))(us.z_filefunc.opaque,
  430.                                                  path,
  431.                                                  ZLIB_FILEFUNC_MODE_READ |
  432.                                                  ZLIB_FILEFUNC_MODE_EXISTING);
  433.     if (us.filestream==NULL)
  434.         return NULL;
  435.  
  436.     central_pos = unzlocal_SearchCentralDir(&us.z_filefunc,us.filestream);
  437.     if (central_pos==0)
  438.         err=UNZ_ERRNO;
  439.  
  440.     if (ZSEEK(us.z_filefunc, us.filestream,
  441.                                       central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0)
  442.         err=UNZ_ERRNO;
  443.  
  444.     /* the signature, already checked */
  445.     if (unzlocal_getLong(&us.z_filefunc, us.filestream,&uL)!=UNZ_OK)
  446.         err=UNZ_ERRNO;
  447.  
  448.     /* number of this disk */
  449.     if (unzlocal_getShort(&us.z_filefunc, us.filestream,&number_disk)!=UNZ_OK)
  450.         err=UNZ_ERRNO;
  451.  
  452.     /* number of the disk with the start of the central directory */
  453.     if (unzlocal_getShort(&us.z_filefunc, us.filestream,&number_disk_with_CD)!=UNZ_OK)
  454.         err=UNZ_ERRNO;
  455.  
  456.     /* total number of entries in the central dir on this disk */
  457.     if (unzlocal_getShort(&us.z_filefunc, us.filestream,&us.gi.number_entry)!=UNZ_OK)
  458.         err=UNZ_ERRNO;
  459.  
  460.     /* total number of entries in the central dir */
  461.     if (unzlocal_getShort(&us.z_filefunc, us.filestream,&number_entry_CD)!=UNZ_OK)
  462.         err=UNZ_ERRNO;
  463.  
  464.     if ((number_entry_CD!=us.gi.number_entry) ||
  465.         (number_disk_with_CD!=0) ||
  466.         (number_disk!=0))
  467.         err=UNZ_BADZIPFILE;
  468.  
  469.     /* size of the central directory */
  470.     if (unzlocal_getLong(&us.z_filefunc, us.filestream,&us.size_central_dir)!=UNZ_OK)
  471.         err=UNZ_ERRNO;
  472.  
  473.     /* offset of start of central directory with respect to the
  474.           starting disk number */
  475.     if (unzlocal_getLong(&us.z_filefunc, us.filestream,&us.offset_central_dir)!=UNZ_OK)
  476.         err=UNZ_ERRNO;
  477.  
  478.     /* zipfile comment length */
  479.     if (unzlocal_getShort(&us.z_filefunc, us.filestream,&us.gi.size_comment)!=UNZ_OK)
  480.         err=UNZ_ERRNO;
  481.  
  482.     if ((central_pos<us.offset_central_dir+us.size_central_dir) &&
  483.         (err==UNZ_OK))
  484.         err=UNZ_BADZIPFILE;
  485.  
  486.     if (err!=UNZ_OK)
  487.     {
  488.         ZCLOSE(us.z_filefunc, us.filestream);
  489.         return NULL;
  490.     }
  491.  
  492.     us.byte_before_the_zipfile = central_pos -
  493.                             (us.offset_central_dir+us.size_central_dir);
  494.     us.central_pos = central_pos;
  495.     us.pfile_in_zip_read = NULL;
  496.     us.encrypted = 0;
  497.  
  498.  
  499.     s=(unz_s*)ALLOC(sizeof(unz_s));
  500.     *s=us;
  501.     unzGoToFirstFile((unzFile)s);
  502.     return (unzFile)s;
  503. }
  504.  
  505.  
  506. extern unzFile ZEXPORT unzOpen (path)
  507.     const char *path;
  508. {
  509.     return unzOpen2(path, NULL);
  510. }
  511.  
  512. /*
  513.   Close a ZipFile opened with unzipOpen.
  514.   If there is files inside the .Zip opened with unzipOpenCurrentFile (see later),
  515.     these files MUST be closed with unzipCloseCurrentFile before call unzipClose.
  516.   return UNZ_OK if there is no problem. */
  517. extern int ZEXPORT unzClose (file)
  518.     unzFile file;
  519. {
  520.     unz_s* s;
  521.     if (file==NULL)
  522.         return UNZ_PARAMERROR;
  523.     s=(unz_s*)file;
  524.  
  525.     if (s->pfile_in_zip_read!=NULL)
  526.         unzCloseCurrentFile(file);
  527.  
  528.     ZCLOSE(s->z_filefunc, s->filestream);
  529.     TRYFREE(s);
  530.     return UNZ_OK;
  531. }
  532.  
  533.  
  534. /*
  535.   Write info about the ZipFile in the *pglobal_info structure.
  536.   No preparation of the structure is needed
  537.   return UNZ_OK if there is no problem. */
  538. extern int ZEXPORT unzGetGlobalInfo (file,pglobal_info)
  539.     unzFile file;
  540.     unz_global_info *pglobal_info;
  541. {
  542.     unz_s* s;
  543.     if (file==NULL)
  544.         return UNZ_PARAMERROR;
  545.     s=(unz_s*)file;
  546.     *pglobal_info=s->gi;
  547.     return UNZ_OK;
  548. }
  549.  
  550.  
  551. /*
  552.    Translate date/time from Dos format to tm_unz (readable more easilty)
  553. */
  554. local void unzlocal_DosDateToTmuDate (ulDosDate, ptm)
  555.     uLong ulDosDate;
  556.     tm_unz* ptm;
  557. {
  558.     uLong uDate;
  559.     uDate = (uLong)(ulDosDate>>16);
  560.     ptm->tm_mday = (uInt)(uDate&0x1f) ;
  561.     ptm->tm_mon =  (uInt)((((uDate)&0x1E0)/0x20)-1) ;
  562.     ptm->tm_year = (uInt)(((uDate&0x0FE00)/0x0200)+1980) ;
  563.  
  564.     ptm->tm_hour = (uInt) ((ulDosDate &0xF800)/0x800);
  565.     ptm->tm_min =  (uInt) ((ulDosDate&0x7E0)/0x20) ;
  566.     ptm->tm_sec =  (uInt) (2*(ulDosDate&0x1f)) ;
  567. }
  568.  
  569. /*
  570.   Get Info about the current file in the zipfile, with internal only info
  571. */
  572. local int unzlocal_GetCurrentFileInfoInternal OF((unzFile file,
  573.                                                   unz_file_info *pfile_info,
  574.                                                   unz_file_info_internal
  575.                                                   *pfile_info_internal,
  576.                                                   char *szFileName,
  577.                                                   uLong fileNameBufferSize,
  578.                                                   void *extraField,
  579.                                                   uLong extraFieldBufferSize,
  580.                                                   char *szComment,
  581.                                                   uLong commentBufferSize));
  582.  
  583. local int unzlocal_GetCurrentFileInfoInternal (file,
  584.                                               pfile_info,
  585.                                               pfile_info_internal,
  586.                                               szFileName, fileNameBufferSize,
  587.                                               extraField, extraFieldBufferSize,
  588.                                               szComment,  commentBufferSize)
  589.     unzFile file;
  590.     unz_file_info *pfile_info;
  591.     unz_file_info_internal *pfile_info_internal;
  592.     char *szFileName;
  593.     uLong fileNameBufferSize;
  594.     void *extraField;
  595.     uLong extraFieldBufferSize;
  596.     char *szComment;
  597.     uLong commentBufferSize;
  598. {
  599.     unz_s* s;
  600.     unz_file_info file_info;
  601.     unz_file_info_internal file_info_internal;
  602.     int err=UNZ_OK;
  603.     uLong uMagic;
  604.     long lSeek=0;
  605.  
  606.     if (file==NULL)
  607.         return UNZ_PARAMERROR;
  608.     s=(unz_s*)file;
  609.     if (ZSEEK(s->z_filefunc, s->filestream,
  610.               s->pos_in_central_dir+s->byte_before_the_zipfile,
  611.               ZLIB_FILEFUNC_SEEK_SET)!=0)
  612.         err=UNZ_ERRNO;
  613.  
  614.  
  615.     /* we check the magic */
  616.     if (err==UNZ_OK)
  617.         if (unzlocal_getLong(&s->z_filefunc, s->filestream,&uMagic) != UNZ_OK)
  618.             err=UNZ_ERRNO;
  619.         else if (uMagic!=0x02014b50)
  620.             err=UNZ_BADZIPFILE;
  621.  
  622.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.version) != UNZ_OK)
  623.         err=UNZ_ERRNO;
  624.  
  625.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.version_needed) != UNZ_OK)
  626.         err=UNZ_ERRNO;
  627.  
  628.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.flag) != UNZ_OK)
  629.         err=UNZ_ERRNO;
  630.  
  631.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.compression_method) != UNZ_OK)
  632.         err=UNZ_ERRNO;
  633.  
  634.     if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.dosDate) != UNZ_OK)
  635.         err=UNZ_ERRNO;
  636.  
  637.     unzlocal_DosDateToTmuDate(file_info.dosDate,&file_info.tmu_date);
  638.  
  639.     if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.crc) != UNZ_OK)
  640.         err=UNZ_ERRNO;
  641.  
  642.     if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.compressed_size) != UNZ_OK)
  643.         err=UNZ_ERRNO;
  644.  
  645.     if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.uncompressed_size) != UNZ_OK)
  646.         err=UNZ_ERRNO;
  647.  
  648.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.size_filename) != UNZ_OK)
  649.         err=UNZ_ERRNO;
  650.  
  651.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.size_file_extra) != UNZ_OK)
  652.         err=UNZ_ERRNO;
  653.  
  654.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.size_file_comment) != UNZ_OK)
  655.         err=UNZ_ERRNO;
  656.  
  657.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.disk_num_start) != UNZ_OK)
  658.         err=UNZ_ERRNO;
  659.  
  660.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.internal_fa) != UNZ_OK)
  661.         err=UNZ_ERRNO;
  662.  
  663.     if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.external_fa) != UNZ_OK)
  664.         err=UNZ_ERRNO;
  665.  
  666.     if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info_internal.offset_curfile) != UNZ_OK)
  667.         err=UNZ_ERRNO;
  668.  
  669.     lSeek+=file_info.size_filename;
  670.     if ((err==UNZ_OK) && (szFileName!=NULL))
  671.     {
  672.         uLong uSizeRead ;
  673.         if (file_info.size_filename<fileNameBufferSize)
  674.         {
  675.             *(szFileName+file_info.size_filename)='\0';
  676.             uSizeRead = file_info.size_filename;
  677.         }
  678.         else
  679.             uSizeRead = fileNameBufferSize;
  680.  
  681.         if ((file_info.size_filename>0) && (fileNameBufferSize>0))
  682.             if (ZREAD(s->z_filefunc, s->filestream,szFileName,uSizeRead)!=uSizeRead)
  683.                 err=UNZ_ERRNO;
  684.         lSeek -= uSizeRead;
  685.     }
  686.  
  687.  
  688.     if ((err==UNZ_OK) && (extraField!=NULL))
  689.     {
  690.         uLong uSizeRead ;
  691.         if (file_info.size_file_extra<extraFieldBufferSize)
  692.             uSizeRead = file_info.size_file_extra;
  693.         else
  694.             uSizeRead = extraFieldBufferSize;
  695.  
  696.         if (lSeek!=0)
  697.             if (ZSEEK(s->z_filefunc, s->filestream,lSeek,ZLIB_FILEFUNC_SEEK_CUR)==0)
  698.                 lSeek=0;
  699.             else
  700.                 err=UNZ_ERRNO;
  701.         if ((file_info.size_file_extra>0) && (extraFieldBufferSize>0))
  702.             if (ZREAD(s->z_filefunc, s->filestream,extraField,uSizeRead)!=uSizeRead)
  703.                 err=UNZ_ERRNO;
  704.         lSeek += file_info.size_file_extra - uSizeRead;
  705.     }
  706.     else
  707.         lSeek+=file_info.size_file_extra;
  708.  
  709.  
  710.     if ((err==UNZ_OK) && (szComment!=NULL))
  711.     {
  712.         uLong uSizeRead ;
  713.         if (file_info.size_file_comment<commentBufferSize)
  714.         {
  715.             *(szComment+file_info.size_file_comment)='\0';
  716.             uSizeRead = file_info.size_file_comment;
  717.         }
  718.         else
  719.             uSizeRead = commentBufferSize;
  720.  
  721.         if (lSeek!=0)
  722.             if (ZSEEK(s->z_filefunc, s->filestream,lSeek,ZLIB_FILEFUNC_SEEK_CUR)==0)
  723.                 lSeek=0;
  724.             else
  725.                 err=UNZ_ERRNO;
  726.         if ((file_info.size_file_comment>0) && (commentBufferSize>0))
  727.             if (ZREAD(s->z_filefunc, s->filestream,szComment,uSizeRead)!=uSizeRead)
  728.                 err=UNZ_ERRNO;
  729.         lSeek+=file_info.size_file_comment - uSizeRead;
  730.     }
  731.     else
  732.         lSeek+=file_info.size_file_comment;
  733.  
  734.     if ((err==UNZ_OK) && (pfile_info!=NULL))
  735.         *pfile_info=file_info;
  736.  
  737.     if ((err==UNZ_OK) && (pfile_info_internal!=NULL))
  738.         *pfile_info_internal=file_info_internal;
  739.  
  740.     return err;
  741. }
  742.  
  743.  
  744.  
  745. /*
  746.   Write info about the ZipFile in the *pglobal_info structure.
  747.   No preparation of the structure is needed
  748.   return UNZ_OK if there is no problem.
  749. */
  750. extern int ZEXPORT unzGetCurrentFileInfo (file,
  751.                                           pfile_info,
  752.                                           szFileName, fileNameBufferSize,
  753.                                           extraField, extraFieldBufferSize,
  754.                                           szComment,  commentBufferSize)
  755.     unzFile file;
  756.     unz_file_info *pfile_info;
  757.     char *szFileName;
  758.     uLong fileNameBufferSize;
  759.     void *extraField;
  760.     uLong extraFieldBufferSize;
  761.     char *szComment;
  762.     uLong commentBufferSize;
  763. {
  764.     return unzlocal_GetCurrentFileInfoInternal(file,pfile_info,NULL,
  765.                                                 szFileName,fileNameBufferSize,
  766.                                                 extraField,extraFieldBufferSize,
  767.                                                 szComment,commentBufferSize);
  768. }
  769.  
  770. /*
  771.   Set the current file of the zipfile to the first file.
  772.   return UNZ_OK if there is no problem
  773. */
  774. extern int ZEXPORT unzGoToFirstFile (file)
  775.     unzFile file;
  776. {
  777.     int err=UNZ_OK;
  778.     unz_s* s;
  779.     if (file==NULL)
  780.         return UNZ_PARAMERROR;
  781.     s=(unz_s*)file;
  782.     s->pos_in_central_dir=s->offset_central_dir;
  783.     s->num_file=0;
  784.     err=unzlocal_GetCurrentFileInfoInternal(file,&s->cur_file_info,
  785.                                              &s->cur_file_info_internal,
  786.                                              NULL,0,NULL,0,NULL,0);
  787.     s->current_file_ok = (err == UNZ_OK);
  788.     return err;
  789. }
  790.  
  791. /*
  792.   Set the current file of the zipfile to the next file.
  793.   return UNZ_OK if there is no problem
  794.   return UNZ_END_OF_LIST_OF_FILE if the actual file was the latest.
  795. */
  796. extern int ZEXPORT unzGoToNextFile (file)
  797.     unzFile file;
  798. {
  799.     unz_s* s;
  800.     int err;
  801.  
  802.     if (file==NULL)
  803.         return UNZ_PARAMERROR;
  804.     s=(unz_s*)file;
  805.     if (!s->current_file_ok)
  806.         return UNZ_END_OF_LIST_OF_FILE;
  807.     if (s->gi.number_entry != 0xffff)    // 2^16 files overflow hack
  808.     if (s->num_file+1==s->gi.number_entry)
  809.         return UNZ_END_OF_LIST_OF_FILE;
  810.  
  811.     s->pos_in_central_dir += SIZECENTRALDIRITEM + s->cur_file_info.size_filename +
  812.             s->cur_file_info.size_file_extra + s->cur_file_info.size_file_comment ;
  813.     s->num_file++;
  814.     err = unzlocal_GetCurrentFileInfoInternal(file,&s->cur_file_info,
  815.                                                &s->cur_file_info_internal,
  816.                                                NULL,0,NULL,0,NULL,0);
  817.     s->current_file_ok = (err == UNZ_OK);
  818.     return err;
  819. }
  820.  
  821.  
  822. /*
  823.   Try locate the file szFileName in the zipfile.
  824.   For the iCaseSensitivity signification, see unzipStringFileNameCompare
  825.  
  826.   return value :
  827.   UNZ_OK if the file is found. It becomes the current file.
  828.   UNZ_END_OF_LIST_OF_FILE if the file is not found
  829. */
  830. extern int ZEXPORT unzLocateFile (file, szFileName, iCaseSensitivity)
  831.     unzFile file;
  832.     const char *szFileName;
  833.     int iCaseSensitivity;
  834. {
  835.     unz_s* s;
  836.     int err;
  837.  
  838.     /* We remember the 'current' position in the file so that we can jump
  839.      * back there if we fail.
  840.      */
  841.     unz_file_info cur_file_infoSaved;
  842.     unz_file_info_internal cur_file_info_internalSaved;
  843.     uLong num_fileSaved;
  844.     uLong pos_in_central_dirSaved;
  845.  
  846.  
  847.     if (file==NULL)
  848.         return UNZ_PARAMERROR;
  849.  
  850.     if (strlen(szFileName)>=UNZ_MAXFILENAMEINZIP)
  851.         return UNZ_PARAMERROR;
  852.  
  853.     s=(unz_s*)file;
  854.     if (!s->current_file_ok)
  855.         return UNZ_END_OF_LIST_OF_FILE;
  856.  
  857.     /* Save the current state */
  858.     num_fileSaved = s->num_file;
  859.     pos_in_central_dirSaved = s->pos_in_central_dir;
  860.     cur_file_infoSaved = s->cur_file_info;
  861.     cur_file_info_internalSaved = s->cur_file_info_internal;
  862.  
  863.     err = unzGoToFirstFile(file);
  864.  
  865.     while (err == UNZ_OK)
  866.     {
  867.         char szCurrentFileName[UNZ_MAXFILENAMEINZIP+1];
  868.         err = unzGetCurrentFileInfo(file,NULL,
  869.                                     szCurrentFileName,sizeof(szCurrentFileName)-1,
  870.                                     NULL,0,NULL,0);
  871.         if (err == UNZ_OK)
  872.         {
  873.             if (unzStringFileNameCompare(szCurrentFileName,
  874.                                             szFileName,iCaseSensitivity)==0)
  875.                 return UNZ_OK;
  876.             err = unzGoToNextFile(file);
  877.         }
  878.     }
  879.  
  880.     /* We failed, so restore the state of the 'current file' to where we
  881.      * were.
  882.      */
  883.     s->num_file = num_fileSaved ;
  884.     s->pos_in_central_dir = pos_in_central_dirSaved ;
  885.     s->cur_file_info = cur_file_infoSaved;
  886.     s->cur_file_info_internal = cur_file_info_internalSaved;
  887.     return err;
  888. }
  889.  
  890.  
  891. /*
  892. ///////////////////////////////////////////
  893. // Contributed by Ryan Haksi (mailto://cryogen@infoserve.net)
  894. // I need random access
  895. //
  896. // Further optimization could be realized by adding an ability
  897. // to cache the directory in memory. The goal being a single
  898. // comprehensive file read to put the file I need in a memory.
  899. */
  900.  
  901. /*
  902. typedef struct unz_file_pos_s
  903. {
  904.     uLong pos_in_zip_directory;   // offset in file
  905.     uLong num_of_file;            // # of file
  906. } unz_file_pos;
  907. */
  908.  
  909. extern int ZEXPORT unzGetFilePos(file, file_pos)
  910.     unzFile file;
  911.     unz_file_pos* file_pos;
  912. {
  913.     unz_s* s;
  914.  
  915.     if (file==NULL || file_pos==NULL)
  916.         return UNZ_PARAMERROR;
  917.     s=(unz_s*)file;
  918.     if (!s->current_file_ok)
  919.         return UNZ_END_OF_LIST_OF_FILE;
  920.  
  921.     file_pos->pos_in_zip_directory  = s->pos_in_central_dir;
  922.     file_pos->num_of_file           = s->num_file;
  923.  
  924.     return UNZ_OK;
  925. }
  926.  
  927. extern int ZEXPORT unzGoToFilePos(file, file_pos)
  928.     unzFile file;
  929.     unz_file_pos* file_pos;
  930. {
  931.     unz_s* s;
  932.     int err;
  933.  
  934.     if (file==NULL || file_pos==NULL)
  935.         return UNZ_PARAMERROR;
  936.     s=(unz_s*)file;
  937.  
  938.     /* jump to the right spot */
  939.     s->pos_in_central_dir = file_pos->pos_in_zip_directory;
  940.     s->num_file           = file_pos->num_of_file;
  941.  
  942.     /* set the current file */
  943.     err = unzlocal_GetCurrentFileInfoInternal(file,&s->cur_file_info,
  944.                                                &s->cur_file_info_internal,
  945.                                                NULL,0,NULL,0,NULL,0);
  946.     /* return results */
  947.     s->current_file_ok = (err == UNZ_OK);
  948.     return err;
  949. }
  950.  
  951. /*
  952. // Unzip Helper Functions - should be here?
  953. ///////////////////////////////////////////
  954. */
  955.  
  956. /*
  957.   Read the local header of the current zipfile
  958.   Check the coherency of the local header and info in the end of central
  959.         directory about this file
  960.   store in *piSizeVar the size of extra info in local header
  961.         (filename and size of extra field data)
  962. */
  963. local int unzlocal_CheckCurrentFileCoherencyHeader (s,piSizeVar,
  964.                                                     poffset_local_extrafield,
  965.                                                     psize_local_extrafield)
  966.     unz_s* s;
  967.     uInt* piSizeVar;
  968.     uLong *poffset_local_extrafield;
  969.     uInt  *psize_local_extrafield;
  970. {
  971.     uLong uMagic,uData,uFlags;
  972.     uLong size_filename;
  973.     uLong size_extra_field;
  974.     int err=UNZ_OK;
  975.  
  976.     *piSizeVar = 0;
  977.     *poffset_local_extrafield = 0;
  978.     *psize_local_extrafield = 0;
  979.  
  980.     if (ZSEEK(s->z_filefunc, s->filestream,s->cur_file_info_internal.offset_curfile +
  981.                                 s->byte_before_the_zipfile,ZLIB_FILEFUNC_SEEK_SET)!=0)
  982.         return UNZ_ERRNO;
  983.  
  984.  
  985.     if (err==UNZ_OK)
  986.         if (unzlocal_getLong(&s->z_filefunc, s->filestream,&uMagic) != UNZ_OK)
  987.             err=UNZ_ERRNO;
  988.         else if (uMagic!=0x04034b50)
  989.             err=UNZ_BADZIPFILE;
  990.  
  991.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&uData) != UNZ_OK)
  992.         err=UNZ_ERRNO;
  993. /*
  994.     else if ((err==UNZ_OK) && (uData!=s->cur_file_info.wVersion))
  995.         err=UNZ_BADZIPFILE;
  996. */
  997.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&uFlags) != UNZ_OK)
  998.         err=UNZ_ERRNO;
  999.  
  1000.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&uData) != UNZ_OK)
  1001.         err=UNZ_ERRNO;
  1002.     else if ((err==UNZ_OK) && (uData!=s->cur_file_info.compression_method))
  1003.         err=UNZ_BADZIPFILE;
  1004.  
  1005.     if ((err==UNZ_OK) && (s->cur_file_info.compression_method!=0) &&
  1006.                          (s->cur_file_info.compression_method!=Z_DEFLATED))
  1007.         err=UNZ_BADZIPFILE;
  1008.  
  1009.     if (unzlocal_getLong(&s->z_filefunc, s->filestream,&uData) != UNZ_OK) /* date/time */
  1010.         err=UNZ_ERRNO;
  1011.  
  1012.     if (unzlocal_getLong(&s->z_filefunc, s->filestream,&uData) != UNZ_OK) /* crc */
  1013.         err=UNZ_ERRNO;
  1014.     else if ((err==UNZ_OK) && (uData!=s->cur_file_info.crc) &&
  1015.                               ((uFlags & 8)==0))
  1016.         err=UNZ_BADZIPFILE;
  1017.  
  1018.     if (unzlocal_getLong(&s->z_filefunc, s->filestream,&uData) != UNZ_OK) /* size compr */
  1019.         err=UNZ_ERRNO;
  1020.     else if ((err==UNZ_OK) && (uData!=s->cur_file_info.compressed_size) &&
  1021.                               ((uFlags & 8)==0))
  1022.         err=UNZ_BADZIPFILE;
  1023.  
  1024.     if (unzlocal_getLong(&s->z_filefunc, s->filestream,&uData) != UNZ_OK) /* size uncompr */
  1025.         err=UNZ_ERRNO;
  1026.     else if ((err==UNZ_OK) && (uData!=s->cur_file_info.uncompressed_size) &&
  1027.                               ((uFlags & 8)==0))
  1028.         err=UNZ_BADZIPFILE;
  1029.  
  1030.  
  1031.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&size_filename) != UNZ_OK)
  1032.         err=UNZ_ERRNO;
  1033.     else if ((err==UNZ_OK) && (size_filename!=s->cur_file_info.size_filename))
  1034.         err=UNZ_BADZIPFILE;
  1035.  
  1036.     *piSizeVar += (uInt)size_filename;
  1037.  
  1038.     if (unzlocal_getShort(&s->z_filefunc, s->filestream,&size_extra_field) != UNZ_OK)
  1039.         err=UNZ_ERRNO;
  1040.     *poffset_local_extrafield= s->cur_file_info_internal.offset_curfile +
  1041.                                     SIZEZIPLOCALHEADER + size_filename;
  1042.     *psize_local_extrafield = (uInt)size_extra_field;
  1043.  
  1044.     *piSizeVar += (uInt)size_extra_field;
  1045.  
  1046.     return err;
  1047. }
  1048.  
  1049. /*
  1050.   Open for reading data the current file in the zipfile.
  1051.   If there is no error and the file is opened, the return value is UNZ_OK.
  1052. */
  1053. extern int ZEXPORT unzOpenCurrentFile3 (file, method, level, raw, password)
  1054.     unzFile file;
  1055.     int* method;
  1056.     int* level;
  1057.     int raw;
  1058.     const char* password;
  1059. {
  1060.     int err=UNZ_OK;
  1061.     uInt iSizeVar;
  1062.     unz_s* s;
  1063.     file_in_zip_read_info_s* pfile_in_zip_read_info;
  1064.     uLong offset_local_extrafield;  /* offset of the local extra field */
  1065.     uInt  size_local_extrafield;    /* size of the local extra field */
  1066. #    ifndef NOUNCRYPT
  1067.     char source[12];
  1068. #    else
  1069.     if (password != NULL)
  1070.         return UNZ_PARAMERROR;
  1071. #    endif
  1072.  
  1073.     if (file==NULL)
  1074.         return UNZ_PARAMERROR;
  1075.     s=(unz_s*)file;
  1076.     if (!s->current_file_ok)
  1077.         return UNZ_PARAMERROR;
  1078.  
  1079.     if (s->pfile_in_zip_read != NULL)
  1080.         unzCloseCurrentFile(file);
  1081.  
  1082.     if (unzlocal_CheckCurrentFileCoherencyHeader(s,&iSizeVar,
  1083.                 &offset_local_extrafield,&size_local_extrafield)!=UNZ_OK)
  1084.         return UNZ_BADZIPFILE;
  1085.  
  1086.     pfile_in_zip_read_info = (file_in_zip_read_info_s*)
  1087.                                         ALLOC(sizeof(file_in_zip_read_info_s));
  1088.     if (pfile_in_zip_read_info==NULL)
  1089.         return UNZ_INTERNALERROR;
  1090.  
  1091.     pfile_in_zip_read_info->read_buffer=(char*)ALLOC(UNZ_BUFSIZE);
  1092.     pfile_in_zip_read_info->offset_local_extrafield = offset_local_extrafield;
  1093.     pfile_in_zip_read_info->size_local_extrafield = size_local_extrafield;
  1094.     pfile_in_zip_read_info->pos_local_extrafield=0;
  1095.     pfile_in_zip_read_info->raw=raw;
  1096.  
  1097.     if (pfile_in_zip_read_info->read_buffer==NULL)
  1098.     {
  1099.         TRYFREE(pfile_in_zip_read_info);
  1100.         return UNZ_INTERNALERROR;
  1101.     }
  1102.  
  1103.     pfile_in_zip_read_info->stream_initialised=0;
  1104.  
  1105.     if (method!=NULL)
  1106.         *method = (int)s->cur_file_info.compression_method;
  1107.  
  1108.     if (level!=NULL)
  1109.     {
  1110.         *level = 6;
  1111.         switch (s->cur_file_info.flag & 0x06)
  1112.         {
  1113.           case 6 : *level = 1; break;
  1114.           case 4 : *level = 2; break;
  1115.           case 2 : *level = 9; break;
  1116.         }
  1117.     }
  1118.  
  1119.     if ((s->cur_file_info.compression_method!=0) &&
  1120.         (s->cur_file_info.compression_method!=Z_DEFLATED))
  1121.         err=UNZ_BADZIPFILE;
  1122.  
  1123.     pfile_in_zip_read_info->crc32_wait=s->cur_file_info.crc;
  1124.     pfile_in_zip_read_info->crc32=0;
  1125.     pfile_in_zip_read_info->compression_method =
  1126.             s->cur_file_info.compression_method;
  1127.     pfile_in_zip_read_info->filestream=s->filestream;
  1128.     pfile_in_zip_read_info->z_filefunc=s->z_filefunc;
  1129.     pfile_in_zip_read_info->byte_before_the_zipfile=s->byte_before_the_zipfile;
  1130.  
  1131.     pfile_in_zip_read_info->stream.total_out = 0;
  1132.  
  1133.     if ((s->cur_file_info.compression_method==Z_DEFLATED) &&
  1134.         (!raw))
  1135.     {
  1136.       pfile_in_zip_read_info->stream.zalloc = (alloc_func)0;
  1137.       pfile_in_zip_read_info->stream.zfree = (free_func)0;
  1138.       pfile_in_zip_read_info->stream.opaque = (voidpf)0;
  1139.       pfile_in_zip_read_info->stream.next_in = (voidpf)0;
  1140.       pfile_in_zip_read_info->stream.avail_in = 0;
  1141.  
  1142.       err=inflateInit2(&pfile_in_zip_read_info->stream, -MAX_WBITS);
  1143.       if (err == Z_OK)
  1144.         pfile_in_zip_read_info->stream_initialised=1;
  1145.       else
  1146.         return err;
  1147.         /* windowBits is passed < 0 to tell that there is no zlib header.
  1148.          * Note that in this case inflate *requires* an extra "dummy" byte
  1149.          * after the compressed stream in order to complete decompression and
  1150.          * return Z_STREAM_END.
  1151.          * In unzip, i don't wait absolutely Z_STREAM_END because I known the
  1152.          * size of both compressed and uncompressed data
  1153.          */
  1154.     }
  1155.     pfile_in_zip_read_info->rest_read_compressed =
  1156.             s->cur_file_info.compressed_size ;
  1157.     pfile_in_zip_read_info->rest_read_uncompressed =
  1158.             s->cur_file_info.uncompressed_size ;
  1159.  
  1160.  
  1161.     pfile_in_zip_read_info->pos_in_zipfile =
  1162.             s->cur_file_info_internal.offset_curfile + SIZEZIPLOCALHEADER +
  1163.               iSizeVar;
  1164.  
  1165.     pfile_in_zip_read_info->stream.avail_in = (uInt)0;
  1166.  
  1167.     s->pfile_in_zip_read = pfile_in_zip_read_info;
  1168.  
  1169. #    ifndef NOUNCRYPT
  1170.     if (password != NULL)
  1171.     {
  1172.         int i;
  1173.         s->pcrc_32_tab = get_crc_table();
  1174.         init_keys(password,s->keys,s->pcrc_32_tab);
  1175.         if (ZSEEK(s->z_filefunc, s->filestream,
  1176.                   s->pfile_in_zip_read->pos_in_zipfile +
  1177.                      s->pfile_in_zip_read->byte_before_the_zipfile,
  1178.                   SEEK_SET)!=0)
  1179.             return UNZ_INTERNALERROR;
  1180.         if(ZREAD(s->z_filefunc, s->filestream,source, 12)<12)
  1181.             return UNZ_INTERNALERROR;
  1182.  
  1183.         for (i = 0; i<12; i++)
  1184.             zdecode(s->keys,s->pcrc_32_tab,source[i]);
  1185.  
  1186.         s->pfile_in_zip_read->pos_in_zipfile+=12;
  1187.         s->encrypted=1;
  1188.     }
  1189. #    endif
  1190.  
  1191.  
  1192.     return UNZ_OK;
  1193. }
  1194.  
  1195. extern int ZEXPORT unzOpenCurrentFile (file)
  1196.     unzFile file;
  1197. {
  1198.     return unzOpenCurrentFile3(file, NULL, NULL, 0, NULL);
  1199. }
  1200.  
  1201. extern int ZEXPORT unzOpenCurrentFilePassword (file, password)
  1202.     unzFile file;
  1203.     const char* password;
  1204. {
  1205.     return unzOpenCurrentFile3(file, NULL, NULL, 0, password);
  1206. }
  1207.  
  1208. extern int ZEXPORT unzOpenCurrentFile2 (file,method,level,raw)
  1209.     unzFile file;
  1210.     int* method;
  1211.     int* level;
  1212.     int raw;
  1213. {
  1214.     return unzOpenCurrentFile3(file, method, level, raw, NULL);
  1215. }
  1216.  
  1217. /*
  1218.   Read bytes from the current file.
  1219.   buf contain buffer where data must be copied
  1220.   len the size of buf.
  1221.  
  1222.   return the number of byte copied if somes bytes are copied
  1223.   return 0 if the end of file was reached
  1224.   return <0 with error code if there is an error
  1225.     (UNZ_ERRNO for IO error, or zLib error for uncompress error)
  1226. */
  1227. extern int ZEXPORT unzReadCurrentFile  (file, buf, len)
  1228.     unzFile file;
  1229.     voidp buf;
  1230.     unsigned len;
  1231. {
  1232.     int err=UNZ_OK;
  1233.     uInt iRead = 0;
  1234.     unz_s* s;
  1235.     file_in_zip_read_info_s* pfile_in_zip_read_info;
  1236.     if (file==NULL)
  1237.         return UNZ_PARAMERROR;
  1238.     s=(unz_s*)file;
  1239.     pfile_in_zip_read_info=s->pfile_in_zip_read;
  1240.  
  1241.     if (pfile_in_zip_read_info==NULL)
  1242.         return UNZ_PARAMERROR;
  1243.  
  1244.  
  1245.     if ((pfile_in_zip_read_info->read_buffer == NULL))
  1246.         return UNZ_END_OF_LIST_OF_FILE;
  1247.     if (len==0)
  1248.         return 0;
  1249.  
  1250.     pfile_in_zip_read_info->stream.next_out = (Bytef*)buf;
  1251.  
  1252.     pfile_in_zip_read_info->stream.avail_out = (uInt)len;
  1253.  
  1254.     if (len>pfile_in_zip_read_info->rest_read_uncompressed)
  1255.         pfile_in_zip_read_info->stream.avail_out =
  1256.           (uInt)pfile_in_zip_read_info->rest_read_uncompressed;
  1257.  
  1258.     while (pfile_in_zip_read_info->stream.avail_out>0)
  1259.     {
  1260.         if ((pfile_in_zip_read_info->stream.avail_in==0) &&
  1261.             (pfile_in_zip_read_info->rest_read_compressed>0))
  1262.         {
  1263.             uInt uReadThis = UNZ_BUFSIZE;
  1264.             if (pfile_in_zip_read_info->rest_read_compressed<uReadThis)
  1265.                 uReadThis = (uInt)pfile_in_zip_read_info->rest_read_compressed;
  1266.             if (uReadThis == 0)
  1267.                 return UNZ_EOF;
  1268.             if (ZSEEK(pfile_in_zip_read_info->z_filefunc,
  1269.                       pfile_in_zip_read_info->filestream,
  1270.                       pfile_in_zip_read_info->pos_in_zipfile +
  1271.                          pfile_in_zip_read_info->byte_before_the_zipfile,
  1272.                          ZLIB_FILEFUNC_SEEK_SET)!=0)
  1273.                 return UNZ_ERRNO;
  1274.             if (ZREAD(pfile_in_zip_read_info->z_filefunc,
  1275.                       pfile_in_zip_read_info->filestream,
  1276.                       pfile_in_zip_read_info->read_buffer,
  1277.                       uReadThis)!=uReadThis)
  1278.                 return UNZ_ERRNO;
  1279.  
  1280.  
  1281. #            ifndef NOUNCRYPT
  1282.             if(s->encrypted)
  1283.             {
  1284.                 uInt i;
  1285.                 for(i=0;i<uReadThis;i++)
  1286.                   pfile_in_zip_read_info->read_buffer[i] =
  1287.                       zdecode(s->keys,s->pcrc_32_tab,
  1288.                               pfile_in_zip_read_info->read_buffer[i]);
  1289.             }
  1290. #            endif
  1291.  
  1292.  
  1293.             pfile_in_zip_read_info->pos_in_zipfile += uReadThis;
  1294.  
  1295.             pfile_in_zip_read_info->rest_read_compressed-=uReadThis;
  1296.  
  1297.             pfile_in_zip_read_info->stream.next_in =
  1298.                 (Bytef*)pfile_in_zip_read_info->read_buffer;
  1299.             pfile_in_zip_read_info->stream.avail_in = (uInt)uReadThis;
  1300.         }
  1301.  
  1302.         if ((pfile_in_zip_read_info->compression_method==0) || (pfile_in_zip_read_info->raw))
  1303.         {
  1304.             uInt uDoCopy,i ;
  1305.  
  1306.             if ((pfile_in_zip_read_info->stream.avail_in == 0) &&
  1307.                 (pfile_in_zip_read_info->rest_read_compressed == 0))
  1308.                 return (iRead==0) ? UNZ_EOF : iRead;
  1309.  
  1310.             if (pfile_in_zip_read_info->stream.avail_out <
  1311.                             pfile_in_zip_read_info->stream.avail_in)
  1312.                 uDoCopy = pfile_in_zip_read_info->stream.avail_out ;
  1313.             else
  1314.                 uDoCopy = pfile_in_zip_read_info->stream.avail_in ;
  1315.  
  1316.             for (i=0;i<uDoCopy;i++)
  1317.                 *(pfile_in_zip_read_info->stream.next_out+i) =
  1318.                         *(pfile_in_zip_read_info->stream.next_in+i);
  1319.  
  1320.             pfile_in_zip_read_info->crc32 = crc32(pfile_in_zip_read_info->crc32,
  1321.                                 pfile_in_zip_read_info->stream.next_out,
  1322.                                 uDoCopy);
  1323.             pfile_in_zip_read_info->rest_read_uncompressed-=uDoCopy;
  1324.             pfile_in_zip_read_info->stream.avail_in -= uDoCopy;
  1325.             pfile_in_zip_read_info->stream.avail_out -= uDoCopy;
  1326.             pfile_in_zip_read_info->stream.next_out += uDoCopy;
  1327.             pfile_in_zip_read_info->stream.next_in += uDoCopy;
  1328.             pfile_in_zip_read_info->stream.total_out += uDoCopy;
  1329.             iRead += uDoCopy;
  1330.         }
  1331.         else
  1332.         {
  1333.             uLong uTotalOutBefore,uTotalOutAfter;
  1334.             const Bytef *bufBefore;
  1335.             uLong uOutThis;
  1336.             int flush=Z_SYNC_FLUSH;
  1337.  
  1338.             uTotalOutBefore = pfile_in_zip_read_info->stream.total_out;
  1339.             bufBefore = pfile_in_zip_read_info->stream.next_out;
  1340.  
  1341.             /*
  1342.             if ((pfile_in_zip_read_info->rest_read_uncompressed ==
  1343.                      pfile_in_zip_read_info->stream.avail_out) &&
  1344.                 (pfile_in_zip_read_info->rest_read_compressed == 0))
  1345.                 flush = Z_FINISH;
  1346.             */
  1347.             err=inflate(&pfile_in_zip_read_info->stream,flush);
  1348.  
  1349.             uTotalOutAfter = pfile_in_zip_read_info->stream.total_out;
  1350.             uOutThis = uTotalOutAfter-uTotalOutBefore;
  1351.  
  1352.             pfile_in_zip_read_info->crc32 =
  1353.                 crc32(pfile_in_zip_read_info->crc32,bufBefore,
  1354.                         (uInt)(uOutThis));
  1355.  
  1356.             pfile_in_zip_read_info->rest_read_uncompressed -=
  1357.                 uOutThis;
  1358.  
  1359.             iRead += (uInt)(uTotalOutAfter - uTotalOutBefore);
  1360.  
  1361.             if (err==Z_STREAM_END)
  1362.                 return (iRead==0) ? UNZ_EOF : iRead;
  1363.             if (err!=Z_OK)
  1364.                 break;
  1365.         }
  1366.     }
  1367.  
  1368.     if (err==Z_OK)
  1369.         return iRead;
  1370.     return err;
  1371. }
  1372.  
  1373.  
  1374. /*
  1375.   Give the current position in uncompressed data
  1376. */
  1377. extern z_off_t ZEXPORT unztell (file)
  1378.     unzFile file;
  1379. {
  1380.     unz_s* s;
  1381.     file_in_zip_read_info_s* pfile_in_zip_read_info;
  1382.     if (file==NULL)
  1383.         return UNZ_PARAMERROR;
  1384.     s=(unz_s*)file;
  1385.     pfile_in_zip_read_info=s->pfile_in_zip_read;
  1386.  
  1387.     if (pfile_in_zip_read_info==NULL)
  1388.         return UNZ_PARAMERROR;
  1389.  
  1390.     return (z_off_t)pfile_in_zip_read_info->stream.total_out;
  1391. }
  1392.  
  1393.  
  1394. /*
  1395.   return 1 if the end of file was reached, 0 elsewhere
  1396. */
  1397. extern int ZEXPORT unzeof (file)
  1398.     unzFile file;
  1399. {
  1400.     unz_s* s;
  1401.     file_in_zip_read_info_s* pfile_in_zip_read_info;
  1402.     if (file==NULL)
  1403.         return UNZ_PARAMERROR;
  1404.     s=(unz_s*)file;
  1405.     pfile_in_zip_read_info=s->pfile_in_zip_read;
  1406.  
  1407.     if (pfile_in_zip_read_info==NULL)
  1408.         return UNZ_PARAMERROR;
  1409.  
  1410.     if (pfile_in_zip_read_info->rest_read_uncompressed == 0)
  1411.         return 1;
  1412.     else
  1413.         return 0;
  1414. }
  1415.  
  1416.  
  1417.  
  1418. /*
  1419.   Read extra field from the current file (opened by unzOpenCurrentFile)
  1420.   This is the local-header version of the extra field (sometimes, there is
  1421.     more info in the local-header version than in the central-header)
  1422.  
  1423.   if buf==NULL, it return the size of the local extra field that can be read
  1424.  
  1425.   if buf!=NULL, len is the size of the buffer, the extra header is copied in
  1426.     buf.
  1427.   the return value is the number of bytes copied in buf, or (if <0)
  1428.     the error code
  1429. */
  1430. extern int ZEXPORT unzGetLocalExtrafield (file,buf,len)
  1431.     unzFile file;
  1432.     voidp buf;
  1433.     unsigned len;
  1434. {
  1435.     unz_s* s;
  1436.     file_in_zip_read_info_s* pfile_in_zip_read_info;
  1437.     uInt read_now;
  1438.     uLong size_to_read;
  1439.  
  1440.     if (file==NULL)
  1441.         return UNZ_PARAMERROR;
  1442.     s=(unz_s*)file;
  1443.     pfile_in_zip_read_info=s->pfile_in_zip_read;
  1444.  
  1445.     if (pfile_in_zip_read_info==NULL)
  1446.         return UNZ_PARAMERROR;
  1447.  
  1448.     size_to_read = (pfile_in_zip_read_info->size_local_extrafield -
  1449.                 pfile_in_zip_read_info->pos_local_extrafield);
  1450.  
  1451.     if (buf==NULL)
  1452.         return (int)size_to_read;
  1453.  
  1454.     if (len>size_to_read)
  1455.         read_now = (uInt)size_to_read;
  1456.     else
  1457.         read_now = (uInt)len ;
  1458.  
  1459.     if (read_now==0)
  1460.         return 0;
  1461.  
  1462.     if (ZSEEK(pfile_in_zip_read_info->z_filefunc,
  1463.               pfile_in_zip_read_info->filestream,
  1464.               pfile_in_zip_read_info->offset_local_extrafield +
  1465.               pfile_in_zip_read_info->pos_local_extrafield,
  1466.               ZLIB_FILEFUNC_SEEK_SET)!=0)
  1467.         return UNZ_ERRNO;
  1468.  
  1469.     if (ZREAD(pfile_in_zip_read_info->z_filefunc,
  1470.               pfile_in_zip_read_info->filestream,
  1471.               buf,read_now)!=read_now)
  1472.         return UNZ_ERRNO;
  1473.  
  1474.     return (int)read_now;
  1475. }
  1476.  
  1477. /*
  1478.   Close the file in zip opened with unzipOpenCurrentFile
  1479.   Return UNZ_CRCERROR if all the file was read but the CRC is not good
  1480. */
  1481. extern int ZEXPORT unzCloseCurrentFile (file)
  1482.     unzFile file;
  1483. {
  1484.     int err=UNZ_OK;
  1485.  
  1486.     unz_s* s;
  1487.     file_in_zip_read_info_s* pfile_in_zip_read_info;
  1488.     if (file==NULL)
  1489.         return UNZ_PARAMERROR;
  1490.     s=(unz_s*)file;
  1491.     pfile_in_zip_read_info=s->pfile_in_zip_read;
  1492.  
  1493.     if (pfile_in_zip_read_info==NULL)
  1494.         return UNZ_PARAMERROR;
  1495.  
  1496.  
  1497.     if ((pfile_in_zip_read_info->rest_read_uncompressed == 0) &&
  1498.         (!pfile_in_zip_read_info->raw))
  1499.     {
  1500.         if (pfile_in_zip_read_info->crc32 != pfile_in_zip_read_info->crc32_wait)
  1501.             err=UNZ_CRCERROR;
  1502.     }
  1503.  
  1504.  
  1505.     TRYFREE(pfile_in_zip_read_info->read_buffer);
  1506.     pfile_in_zip_read_info->read_buffer = NULL;
  1507.     if (pfile_in_zip_read_info->stream_initialised)
  1508.         inflateEnd(&pfile_in_zip_read_info->stream);
  1509.  
  1510.     pfile_in_zip_read_info->stream_initialised = 0;
  1511.     TRYFREE(pfile_in_zip_read_info);
  1512.  
  1513.     s->pfile_in_zip_read=NULL;
  1514.  
  1515.     return err;
  1516. }
  1517.  
  1518.  
  1519. /*
  1520.   Get the global comment string of the ZipFile, in the szComment buffer.
  1521.   uSizeBuf is the size of the szComment buffer.
  1522.   return the number of byte copied or an error code <0
  1523. */
  1524. extern int ZEXPORT unzGetGlobalComment (file, szComment, uSizeBuf)
  1525.     unzFile file;
  1526.     char *szComment;
  1527.     uLong uSizeBuf;
  1528. {
  1529.     int err=UNZ_OK;
  1530.     unz_s* s;
  1531.     uLong uReadThis ;
  1532.     if (file==NULL)
  1533.         return UNZ_PARAMERROR;
  1534.     s=(unz_s*)file;
  1535.  
  1536.     uReadThis = uSizeBuf;
  1537.     if (uReadThis>s->gi.size_comment)
  1538.         uReadThis = s->gi.size_comment;
  1539.  
  1540.     if (ZSEEK(s->z_filefunc,s->filestream,s->central_pos+22,ZLIB_FILEFUNC_SEEK_SET)!=0)
  1541.         return UNZ_ERRNO;
  1542.  
  1543.     if (uReadThis>0)
  1544.     {
  1545.       *szComment='\0';
  1546.       if (ZREAD(s->z_filefunc,s->filestream,szComment,uReadThis)!=uReadThis)
  1547.         return UNZ_ERRNO;
  1548.     }
  1549.  
  1550.     if ((szComment != NULL) && (uSizeBuf > s->gi.size_comment))
  1551.         *(szComment+s->gi.size_comment)='\0';
  1552.     return (int)uReadThis;
  1553. }
  1554.  
  1555. /* Additions by RX '2004 */
  1556. extern uLong ZEXPORT unzGetOffset (file)
  1557.     unzFile file;
  1558. {
  1559.     unz_s* s;
  1560.  
  1561.     if (file==NULL)
  1562.         return UNZ_PARAMERROR;
  1563.     s=(unz_s*)file;
  1564.     if (!s->current_file_ok)
  1565.         return 0;
  1566.   if (s->gi.number_entry != 0 && s->gi.number_entry != 0xffff)
  1567.     if (s->num_file==s->gi.number_entry)
  1568.         return 0;
  1569.     return s->pos_in_central_dir;
  1570. }
  1571.  
  1572. extern int ZEXPORT unzSetOffset (file, pos)
  1573.     unzFile file;
  1574.   uLong pos;
  1575. {
  1576.     unz_s* s;    
  1577.     int err;
  1578.  
  1579.     if (file==NULL)
  1580.         return UNZ_PARAMERROR;
  1581.     s=(unz_s*)file;
  1582.  
  1583.     s->pos_in_central_dir = pos;
  1584.     s->num_file = s->gi.number_entry;      /* hack */
  1585.     err = unzlocal_GetCurrentFileInfoInternal(file,&s->cur_file_info,
  1586.                                                &s->cur_file_info_internal,
  1587.                                                NULL,0,NULL,0,NULL,0);
  1588.     s->current_file_ok = (err == UNZ_OK);
  1589.     return err;
  1590. }
  1591.  
  1592.